SecurityStateChangedEvent

data class SecurityStateChangedEvent(securityState: SecurityState, schemeIsCryptographic: Boolean, explanations: List<SecurityStateExplanation>, insecureContentStatus: InsecureContentStatus, summary: String?) : Event

The security state of the page changed.

Constructors

SecurityStateChangedEvent
Link copied to clipboard
fun SecurityStateChangedEvent(securityState: SecurityState, schemeIsCryptographic: Boolean, explanations: List<SecurityStateExplanation>, insecureContentStatus: InsecureContentStatus, summary: String? = null)

Functions

domain
Link copied to clipboard
open override fun domain(): String
Returns domain name for which event was generated.
eventName
Link copied to clipboard
open override fun eventName(): String
Returns event name as described in protocol.

Properties

explanations
Link copied to clipboard
val explanations: List<SecurityStateExplanation>
List of explanations for the security state.
insecureContentStatus
Link copied to clipboard
val insecureContentStatus: InsecureContentStatus
Information about insecure content on the page.
schemeIsCryptographic
Link copied to clipboard
val schemeIsCryptographic: Boolean
True if the page was loaded over cryptographic transport such as HTTPS.
securityState
Link copied to clipboard
val securityState: SecurityState
Security state.
summary
Link copied to clipboard
val summary: String? = null
Overrides user-visible description of the state.

Sources

jvm source
Link copied to clipboard